home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 46
/
Aminet 46 (2001)(GTI - Schatztruhe)[!][Dec 2001].iso
/
Aminet
/
text
/
edit
/
edt10src.lha
/
txt
/
scripts
/
Enum.edt
< prev
next >
Wrap
Text File
|
1995-02-28
|
351b
|
19 lines
/* create enumeration */
OPTIONS RESULTS
ReqNumber "Aufzählung" "Basis:"
PARSE VAR RESULT done from
IF done="OK" THEN DO
ReqNumber "Aufzählung" "Endwert:" from
PARSE VAR RESULT done to
IF done="OK" THEN DO
DO WHILE from<=to
Find NEXT "= "
Right 2;
Delete LINEEND
Insert from||";"
from=from+1
END
END
END